AE 443 · Experimental Dynamics and Control Laboratory · Spring 2026 · ERAU
Every control system design begins with a mathematical model of the plant. For a servo-motor driving a gear train — used in aircraft flight control actuators, robotic joints, and gimbal systems — that model is typically a first-order transfer function relating input voltage to output shaft speed. This lab identified that model experimentally for the Quanser SRV02 servo-motor using two complementary approaches: a bump test to extract parameters from the step response, and a model validation experiment to iteratively refine those parameters until simulated and measured responses matched.
A square-wave voltage (amplitude 1.5 V, offset 2.0 V, frequency 0.4 Hz) was applied to the SRV02 via Simulink’s “Monitor & Tune” mode. The load shaft speed and motor voltage were recorded for 5 seconds. The steady-state gain was computed from the measured speed change divided by the voltage change:
K = (yss − y0) / (umax − umin)
The time constant was identified as the time elapsed between the step onset and the point where the response reached 63.2% of its final steady-state value. Both parameters were then entered into the Simulink model and the simulated output compared visually against the measured response. Multiple (K, τ) pairs were tested until the curves converged.
| Source | K (rad/s/V) | τ (s) |
|---|---|---|
| Nominal (theoretical) | 1.53 | 0.0253 |
| Bump test | 1.7866 | 0.048 |
| Model validation (best fit) | 1.68 | 0.044 |
Data was saved from the Simulink workspace and plotted with subplots showing voltage and load shaft speed. Bump test parameters were read from MATLAB cursor coordinates on the response plot.
% Plot voltage and rotational speed vs time
figure();
subplot(2,1,1)
plot(Vm(:,1), Vm(:,2), 'r', 'LineWidth', 1.5);
xlabel('Time (s)'); ylabel('Voltage (V)');
subplot(2,1,2)
plot(wl(:,1), wl(:,2), 'LineWidth', 1.5); % measured
hold on
plot(wl(:,1), wl(:,3), 'LineWidth', 1.5); % simulated
xlabel('Time (s)'); ylabel('Rotational Speed (rad/s)');
% Bump test gain and time constant
K_eb = (y_ss - y_0) / (u_max - u_min); % = 1.7866 (rad/s)/V
tau_eb = t_63pct - t_step_onset; % = 0.048 s